home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / AETSK102.ZIP / contrib / tasks / test / makefile next >
Makefile  |  1993-12-02  |  136b  |  9 lines

  1. CFLAGS = -g -O2 -I../inc
  2.  
  3. test : test.o ../lib/libtask.a
  4.     gcc $(CFLAGS) $^ -lpc -o test
  5.  
  6. test.o : test.cc
  7.     gcc $(CFLAGS) -c $<
  8.  
  9.